import javax.swing.JLabel;
/**
* Just a JLabel. Good for adding extended functionality
* to the tags in the future.
* @author Barnabas Sapan
*/
@SuppressWarnings("serial")
public class TagComponent extends JLabel {
TagComponent(String txt){
super(txt);
}
}